home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2005 July
/
CHIP_CD_2005-07.iso
/
software
/
att
/
attsetup.exe
/
plugins
/
shared memory
/
Delphi
/
attshmem.dpr
< prev
next >
Wrap
Text File
|
2005-02-13
|
194b
|
14 lines
program attshmem;
uses
Forms,
uMain in 'uMain.pas' {frmMain};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TfrmMain, frmMain);
Application.Run;
end.